home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Printer Drivers… / Scanning Generic LaserWriter / Generic LaserWriter.a < prev    next >
Encoding:
Text File  |  1996-03-20  |  685 b   |  36 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    Generic LaserWriter.a
  3. ;
  4. ;    this file contains a jump table for the generic LaserWriter driver
  5. ;
  6. ;    © 1992-1994 Apple Computer Inc.
  7. ;
  8. ;
  9.  
  10.                     STRING        ASIS
  11.                     CASE        OBJ
  12.     
  13.  
  14. DriverJumpTable        PROC        EXPORT
  15.  
  16.                     EXPORT        referenceCount
  17.                             
  18. referenceCount        DC.L        0
  19.  
  20.                     IMPORT        DriverPostScriptScanPrinterText
  21.                     JMP            DriverPostScriptScanPrinterText
  22.  
  23.                     IMPORT        DriverPostScriptScanStatusText
  24.                     JMP            DriverPostScriptScanStatusText
  25.  
  26.                     IMPORT        DriverOpenConnection
  27.                     JMP            DriverOpenConnection
  28.                     
  29.                     IMPORT        DriverCleanupOpenConnection
  30.                     JMP            DriverCleanupOpenConnection
  31.                                                 
  32.                     IMPORT        DriverCloseConnection
  33.                     JMP            DriverCloseConnection
  34.  
  35.                     END
  36.